home *** CD-ROM | disk | FTP | other *** search
- #
- # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
- #
- # See the Nessus Scripts License for details
- #
-
- if(description)
- {
- script_id(10455);
- script_bugtraq_id(1285);
- script_version ("$Revision: 1.12 $");
- script_cve_id("CVE-2000-0488");
- name["english"] = "Buffer Overrun in ITHouse Mail Server v1.04";
- name["francais"] = "DΘpassement de buffer dans ITHouse Mail Server v1.04";
- script_name(english:name["english"], francais:name["francais"]);
-
- desc["english"] = "
- The remote SMTP server is ITHouse Mail Server.
- Versions <= 1.04 of this server are vulnerable to
- a buffer overrun which happens during the delivery
- routine of the mails if an attacker has sent a
- message with a too long To: field.
-
- An attacker may use this flaw to execute arbitrary
- code on this host.
-
- *** Note : we could not check the version number of
- *** the server, so this item may be a false positive.
-
- Solution : Contact your vendor for the latest software release.
- Risk factor : High";
-
-
-
- desc["francais"] = "
- Le serveur SMTP distant est ITHouse Mail Server.
- Les versions infΘrieures ou Θgales α la version 1.04
- sont vulnΘrables α un dΘpassement de buffer ayant lieu
- durant la routine de livraison du mail si un pirate
- a envoyΘ un mail avec un champ To: trop long.
-
- Un pirate peut utiliser ce problΦme pour executer
- du code arbitraire sur ce systΦme.
-
- *** Note : il est impossible de vΘrifier le numΘro de version
- *** de ce server α distance, donc ce message peut etre
- *** une fausse alerte.
-
- Solution : mettez-le α jour en une plus rΘcente version
- Facteur de rique : ElevΘ";
-
- script_description(english:desc["english"], francais:desc["francais"]);
-
-
- summary["english"] = "Checks if the remote smtp server is ITHouse Mail Server";
- summary["francais"] = "VΘrifie si le serveur smtp est ITHouse Mail Server";
- script_summary(english:summary["english"], francais:summary["francais"]);
-
- script_category(ACT_GATHER_INFO);
-
- script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
- francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
-
- family["english"] = "SMTP problems";
- family["francais"] = "ProblΦmes SMTP";
- script_family(english:family["english"], francais:family["francais"]);
-
- script_dependencie("find_service.nes");
- script_require_ports("Services/smtp", 25);
- exit(0);
- }
-
- #
- # The script code starts here
- #
-
- include("smtp_func.inc");
-
- port = get_kb_item("Services/smtp");
- if(!port)port = 25;
-
- if(get_port_state(port))
- {
- data = get_smtp_banner(port:port);
- if(!data)exit(0);
- if(egrep(string:data,
- pattern:".*IT House Mail Server.*"))
- security_hole(port);
- }
-